
 
 #top_menu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    direction: ltr;
  }
 
  #menus_section_bigscreen{
    width: 90%; transform: translateX(-50px); display: flex; flex-direction: row; align-items: center; justify-content:right; 
  }
  #menus_section_smallscreen{
    display: none;
  }
  #menue_but_smallscreen{
    display: none;
}
#menue_but_bigscreen{

width: 10%; display: flex; flex-direction: column; justify-content: center; align-items: center;
 
}


  #top_menu_big_screen{
     padding: 10px;
     background-color: #F7E9DD;
     width: 80%;
     height: 60px;
     border-radius: 20px;
     display: flex;
     flex-direction: row-reverse;
     justify-content: space-between;
     
  }

  #menu_small_scrreen{
    display: none;
  }

 
  #whatsapp_logo{
     height: 40px;
     height: 40px;
 
  }
 .menu_section{
  margin-right: 7px;
  margin-left: 7px;
 }
  
 #logo{
      height: 30px;
     
 }
 .menu_section a{
     text-decoration: none;
     color: #6B7338;
 
 }
 #hero_image{
     width: 90%;
     height: 300px;
     background-color: black;
     z-index: -1;
     transform: translateY(-50px);
     background-image: url(../images/privacy\ policy.png);
     background-size: cover;
     border-radius: 50px;
     text-align: center;
     color: rgba(231, 195, 138, 1);
     font-size: 70px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     font-weight: bold;
 }


#comany_data{
    direction: rtl;
    color: rgba(31, 34, 17, 1);
}

.divider{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.divider div{
    width: 90%;
    height: 3px;
    border-radius: 10px;
    background-color: rgba(142, 150, 76, 1);
}

#footer{
    width: 90%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
color: rgba(107, 115, 56, 1);
}

#footer_right a{
text-decoration: none;
cursor: pointer;
margin: 10px;
color: rgba(107, 115, 56, 1);
}

#footdisplay{
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

 #content{
    direction: rtl;

}

li::marker {
    color:  rgba(85, 92, 47, 1);
  }

  @media only screen and (max-width: 600px) {
#menus_section_bigscreen{
    display: none;
}
#menus_section_smallscreen{
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#menue_but_smallscreen{
    width: 10%; display: flex; flex-direction: column; justify-content: center; align-items: center;
 
}
#menue_but_bigscreen{
display: none;
}
    #hero_image{
        width: 90%;
        height: 200px;
        background-color: black;
        z-index: -1;
        transform: translateY(-50px);
        background-image: url(../images/privacy\ policy.png);
        background-size: cover;
        border-radius: 50px;
        text-align: center;
        color: rgba(231, 195, 138, 1);
        font-size: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-weight: bold;
    }

    
    #footer{
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    color: rgba(107, 115, 56, 1);
    }
    #footer_right{
        margin-bottom: 10px;
    }
    #footer_right a{
    text-decoration: none;
    cursor: pointer;
    margin: 10px;
    color: rgba(107, 115, 56, 1);
    }
    
    #footdisplay{
        
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    } 

    #comany_data{
        direction: rtl;
        color: rgba(31, 34, 17, 1);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #menu_small_scrreen{
    
        display: flex;
        background-color: #F7E9DD;
    
    }





    .show-modal {
        outline: none;
        border: none;
        cursor: pointer;
        color: #fff;
        border-radius: 6px;
        font-size: 1.2rem;
       
        transition: 0.3s ease;
       
      }
      
      .bottom-sheet {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        opacity: 0;
        pointer-events: none;
        align-items: center;
        flex-direction: column;
        justify-content: flex-end;
        transition: 0.1s linear;
       
      }
      .bottom-sheet.show {
        opacity: 1;
        pointer-events: auto;
        
      }
      .bottom-sheet .sheet-overlay {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        background: #000;

      }
      .bottom-sheet .content {
        width: 100%;
        position: relative;
    margin-left: 10px;
    margin-right: 10px;
        background-color: #F7E9DD;
        max-height: 100vh;
        height: 50vh;
        max-width: 1150px;
        padding: 25px 30px;
        transform: translateY(100%);
        border-radius: 12px 12px 0 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.03);
        transition: 0.3s ease;
      }
      .bottom-sheet.show .content{
        transform: translateY(0%);
      }
      .bottom-sheet.dragging .content {
        transition: none;
      }
      .bottom-sheet.fullscreen .content {
        border-radius: 0;
        overflow-y: hidden;
      }
      .bottom-sheet .header {
        display: flex;
        justify-content: center;
      }
      .header .drag-icon {
        cursor: grab;
        user-select: none;
        padding: 15px;
        margin-top: -15px;
      }
      .header .drag-icon span {
        height: 4px;
        width: 40px;
        display: block;
        background: #C7D0E1;
        border-radius: 50px;
      }
      .bottom-sheet .body {
        height: 100%;
        overflow-y: scroll;
        padding: 15px 0 40px;
        scrollbar-width: none;
        
      }
      .bottom-sheet .body::-webkit-scrollbar {
        width: 0;
      }
      .bottom-sheet .body h2 {
        font-size: 1.8rem;
      }
      .bottom-sheet .body p {
        margin-top: 20px;
        font-size: 1.05rem;
      }

      .bottom_sheet_menu{
        margin: 10px;
         border-color:  #C3C88E;
          border-style: solid;
         border-width: 1px;
        width: 90%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
        text-align: center;
      }

      .bottom_us_logos_media{
        text-align: center;
      }
      .bottom_us_logos_media img{
        width: 30px;
        margin: 4px;
      }


  }